* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    /* Top Bar */
    .topbar {
      background-color: #ffc107;
      color: white;
      padding: 8px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .topbar .email {
      margin-left: 100px;
      font-size: 14px;
    }

    .topbar .social-icons {
      margin-right: 100px;
      display: flex;
      gap: 15px;
    }

    .topbar .social-icons a {
      color: white;
      text-decoration: none;
      font-size: 16px;
    }

    /* Navbar */
    .navbar {
      background-color: #000;
      color: orange;
      padding: 12px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 34px;
      z-index: 999;
    }

    .navbar .logo {
    margin-left: 100px; /* optional */
    display: flex;       /* make logo a flex container */
    align-items: center; /* vertically center its content */
    }

      .navbar .logo img {
      display: block;      /* remove inline spacing */
      vertical-align: middle; /* ensures vertical alignment */
    }

    .navbar .nav-links {
      margin-right: 100px;
      display: flex;
      gap: 20px;
    }

    .navbar .nav-links a {
      color: orange;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }

    .navbar .nav-links a:hover {
      color: white;
    }

.navbar .nav-links a.active {
  color: white;        /* gold active color */
  //border-bottom: 2px solid #c59d5f;
}



    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 30px;
      height: 25px;
      cursor: pointer;
      margin-right: 20px;
      z-index: 1001;
    }

    .hamburger span {
      height: 3px;
      width: 25px;
      background: orange;
      margin: 4px 0;
      transition: all 0.3s ease;
      display: block;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
      .topbar,
      .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }

      .topbar .email,
      .navbar .logo {
        margin-left: 20px;
      }
        
        

      .topbar .social-icons {
        margin-right: 20px;
      }

      .hamburger {
        display: flex;
        margin-right: 20px;
      }

      .navbar .nav-links {
        position: absolute;
        top: 84px;
        right: 0;
        background-color: #000;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 10px 20px;
        display: none;
        margin: 0;
        gap: 10px;
      }

      .navbar .nav-links.active {
        display: flex;
      }

      .hamburger.close span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.close span:nth-child(2) {
  opacity: 0;
}
.hamburger.close span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
    }
      
     /* === Hero Section === */
    .hero {
      position: relative;
      height: 100vh;
      background: url('../img/hero-bg.jpg') center/cover no-repeat;
        
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.1); /* 10% opacity overlay */
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      height: 100%;
      padding: 40px;
      color: white;
        
       
    }

    .hero-left {
      flex: 1;
      min-width: 250px;
      max-width: 500px;
      padding: 20px;
         
    }

    .hero-left h1 {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .hero-left p {
      font-size: 18px;
      margin-bottom: 20px;
        color: aliceblue;
    }

    .hero-left button {
      padding: 10px 20px;
      background: orange;
      color: white;
       border: 2px solid white ;
      cursor: pointer;
      font-size: 16px;
    }

      .hero-left button:hover {
      background-color: transparent;
      color: black;
     border: 2px solid orange;
          
    }
      
     .hero a {
         color: white;
  text-decoration: none;
}
      
      
      
      
    .hero-right {
      flex: 1;
      min-width: 250px;
      max-width: 500px;
      padding: 20px;
        
        
        
    }

    .hero-right img {
      max-width: 100%;
      height: auto;
      border: 5px solid white;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        
    } 
      
      
      
    @media (max-width: 768px) {
  .hero {
    height: 150vh;  /* 👈 Makes hero taller on mobile */
  }
}
  
     /* Footer */
.footer {
  background-color: orange;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}   

.social-icons a,
.contact-icons a {
  color: #fff;
  font-size: 18px;
  margin-left: 12px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-icons a {
  color: #333;
  font-size: 22px;
  margin-right: 15px;
}

.social-icons a:hover,
.contact-icons a:hover {
  color: #c59d5f; /* gallery gold accent */
  transform: scale(1.2);
}

 /* Popup Background */
#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  padding: 20px;
}

/* Popup Box */
#popup-box {
  background: #111;
  width: 40%;
  max-width: 720px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  color: #fff;
  animation: popupFade 0.4s ease;
}

/* Animation */
@keyframes popupFade {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Header */
.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}

.popup-header h1 {
  font-size: 20px;
  color: #ffb400;
  margin: 0;
}

#popup-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #ffb400;
  cursor: pointer;
}

#popup-close:hover {
  color: white; /* Lighter gold on hover */
}        
        
        
        
/* Text Section */
.popup-content h2 {
  font-size: 24px;
  color: #ffb400;
  margin-bottom: 18px;
}

.popup-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ddd;
}

/* Preview Box */
.preview-box {
  width: 100%;
  background: #1a1a1a;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 18px 0;
  padding: 15px;
  box-sizing: border-box;
  border: 2px solid #ffb400; /* gold border */
  text-align: center;
}

.preview-image {
  width: 100%;
  max-width: 210px; /* adjust as needed */
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.preview-text {
  font-size: 16px;
  line-height: 1.5;
}

.preview-text strong {
  color: #ffb400;
  font-size: 18px;
}


/* Button */
.popup-button {
  display: block;
  width: fit-content;
  margin: 15px auto 0 auto; /* auto = center horizontally */
  padding: 12px 20px;
  background: #ffb400;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

        .popup-button:hover {
  background:  white; /* Lighter gold on hover */
}

/* Mobile Responsive */
@media(max-width: 768px) {
  #popup-box {
    width: 90%;
    padding: 28px;
  }
  .popup-content h2 {
    font-size: 24px;
  }
}
